home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / net / sun4c.md / netLERecv.c < prev    next >
C/C++ Source or Header  |  1992-12-18  |  9KB  |  350 lines

  1. /* netLERecv.c -
  2.  *
  3.  * Routines to manage the receive unit of the AMD LANCE ethernet chip.
  4.  *
  5.  * Copyright 1988 Regents of the University of California
  6.  * Permission to use, copy, modify, and distribute this
  7.  * software and its documentation for any purpose and without
  8.  * fee is hereby granted, provided that the above copyright
  9.  * notice appear in all copies.  The University of California
  10.  * makes no representations about the suitability of this
  11.  * software for any purpose.  It is provided "as is" without
  12.  * express or implied warranty.
  13.  *
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /cdrom/src/kernel/Cvsroot/kernel/net/sun4c.md/netLERecv.c,v 9.6 92/05/13 14:45:35 jhh Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <netLEInt.h>
  22. #include <vm.h>
  23. #include <vmMach.h>
  24. #include <sys.h>
  25. #include <list.h>
  26. #include <machMon.h>
  27.  
  28. /*
  29.  * Macro to step ring pointers.
  30.  */
  31.  
  32. #define    NEXT_RECV(p)    ( ((p+1) > statePtr->recvDescLastPtr) ? \
  33.                 statePtr->recvDescFirstPtr : \
  34.                 (p+1))
  35. #define    PREV_RECV(p)    ( ((p-1) < statePtr->recvDescFirstPtr) ? \
  36.                 statePtr->recvDescLastPtr : \
  37.                 (p-1))
  38.  
  39.  
  40. static void AllocateRecvMem _ARGS_((NetLEState *statePtr));
  41.  
  42. /*
  43.  *----------------------------------------------------------------------
  44.  *
  45.  * AllocateRecvMem --
  46.  *
  47.  *    Allocate kernel memory for receive ring and data buffers.    
  48.  *
  49.  * Results:
  50.  *    None.
  51.  *
  52.  * Side effects:
  53.  *    Device state structure is updated.
  54.  *
  55.  *----------------------------------------------------------------------
  56.  */
  57.  
  58. static void
  59. AllocateRecvMem(statePtr)
  60.     NetLEState        *statePtr; /* The state of the interface. */
  61. {
  62.     unsigned int    memBase;
  63.     int            i;
  64.  
  65.     /*
  66.      * Allocate the ring of receive buffer descriptors.  The ring must start
  67.      * on 8-byte boundary.  
  68.      */
  69.     memBase = (unsigned int) BufAlloc(statePtr, 
  70.         (NET_LE_NUM_RECV_BUFFERS * sizeof(NetLERecvMsgDesc)) + 8);
  71.     /*
  72.      * Insure ring starts on 8-byte boundary.
  73.      */
  74.     if (memBase & 0x7) {
  75.     memBase = (memBase + 8) & ~0x7;
  76.     }
  77.     statePtr->recvDescFirstPtr = (volatile NetLERecvMsgDesc *) memBase;
  78.  
  79.     /*
  80.      * Allocate the receive buffers. The buffers are
  81.      * allocated on an odd short word boundry so that packet data (after
  82.      * the ethernet header) will start on a long word boundry. This
  83.      * eliminates unaligned word fetches from the RPC module which would
  84.      * cause alignment traps on SPARC processors such as the sun4.
  85.      *
  86.      * This code assumes that ethernet headers are an odd number of short
  87.      * (2-byte) words long.
  88.      */
  89.  
  90.     for (i = 0; i < NET_LE_NUM_RECV_BUFFERS; i++) {
  91.     int     addr;
  92.     addr = (int) BufAlloc(statePtr, NET_LE_RECV_BUFFER_SIZE + 3);
  93.     addr += 1;
  94.     addr &= ~0x3;
  95.     addr += 2;
  96.         statePtr->recvDataBuffer[i] = (Address) addr;
  97.     bzero((char *) statePtr->recvDataBuffer[i], NET_LE_RECV_BUFFER_SIZE);
  98.     }
  99. #undef ALIGNMENT_PADDING
  100.  
  101.     statePtr->recvMemAllocated = TRUE;
  102. }
  103.  
  104.  
  105. /*
  106.  *----------------------------------------------------------------------
  107.  *
  108.  * NetLERecvInit --
  109.  *
  110.  *    Initialize the receive buffer lists for the receive unit allocating
  111.  *    memory if need.
  112.  *
  113.  * Results:
  114.  *    None.
  115.  *
  116.  * Side effects:
  117.  *    The receive ring is initialized and the device state structure is
  118.  *    updated.
  119.  *
  120.  *----------------------------------------------------------------------
  121.  */
  122.  
  123. void
  124. NetLERecvInit(statePtr)
  125.     NetLEState        *statePtr; /* The state of the interface. */
  126. {
  127.     int     bufNum;
  128.     volatile NetLERecvMsgDesc    *descPtr;
  129.  
  130.     if (!statePtr->recvMemAllocated) {
  131.     AllocateRecvMem(statePtr);
  132.     }
  133.     /*
  134.      * Initialize the state structure to point to the ring. recvDescFirstPtr
  135.      * is set by AllocateRecvMem() and never changed.
  136.      */
  137.     statePtr->recvDescLastPtr = 
  138.         &(statePtr->recvDescFirstPtr[NET_LE_NUM_RECV_BUFFERS-1]);
  139.     statePtr->recvDescNextPtr = statePtr->recvDescFirstPtr;
  140.  
  141.     /* 
  142.      * Initialize the ring buffer descriptors.
  143.      */
  144.     descPtr = statePtr->recvDescFirstPtr;
  145.     for (bufNum = 0; bufNum < NET_LE_NUM_RECV_BUFFERS; bufNum++, descPtr++) { 
  146.     bzero((char *) descPtr, sizeof(NetLERecvMsgDesc));
  147.      /*
  148.       * Point the descriptor at its buffer.
  149.       */
  150.     descPtr->bufAddrLow = 
  151.         NET_LE_TO_CHIP_ADDR_LOW(statePtr->recvDataBuffer[bufNum]);
  152.     descPtr->bufAddrHigh = 
  153.         NET_LE_TO_CHIP_ADDR_HIGH(statePtr->recvDataBuffer[bufNum]);
  154.     /* 
  155.      * Insert its size. Note the 2's complementness of the bufferSize.
  156.      */
  157.     descPtr->bufferSize = -NET_LE_RECV_BUFFER_SIZE;
  158.     /*
  159.      * Set ownership to the chip.
  160.      */
  161.     NetBfByteSet(descPtr->bits, ChipOwned, 1);
  162.     }
  163.     statePtr->lastRecvCnt = 0;
  164.     statePtr->recvMemInitialized = TRUE;
  165. }
  166.  
  167.  
  168. /*
  169.  *----------------------------------------------------------------------
  170.  *
  171.  * NetLERecvProcess --
  172.  *
  173.  *    Process a newly received packet.
  174.  *
  175.  * Results:
  176.  *    FAILURE if something went wrong, SUCCESS otherwise.
  177.  *
  178.  * Side effects:
  179.  *    None.
  180.  *
  181.  *----------------------------------------------------------------------
  182.  */
  183.  
  184. ReturnStatus
  185. NetLERecvProcess(dropPackets, statePtr)
  186.     Boolean        dropPackets;    /* Drop all packets. */
  187.     NetLEState        *statePtr;     /* The state of the interface. */
  188. {
  189.     register    volatile NetLERecvMsgDesc    *descPtr;
  190.     register    Net_EtherHdr        *etherHdrPtr;
  191.     int                    size;
  192.     Boolean                tossPacket;
  193.     int                    numResets;
  194.  
  195.     /*
  196.      * If not initialized then forget the interrupt.
  197.      */
  198.  
  199.     if (!statePtr->recvMemInitialized) {
  200.     return (FAILURE);
  201.     }
  202.     descPtr = statePtr->recvDescNextPtr;
  203.  
  204.     if (NetBfByteTest(descPtr->bits, ChipOwned, 1)) {
  205.     if (statePtr->lastRecvCnt == 0) {
  206.         printf(
  207.     "LE ethernet: Bogus receive interrupt. Buffer 0x%x owned by chip.\n",
  208.         descPtr);
  209.         return (FAILURE);
  210.     } else {
  211.         statePtr->lastRecvCnt = 0;
  212.         return (SUCCESS);
  213.     }
  214.     }
  215.     if (NetBfByteTest(descPtr->bits, StartOfPacket, 0)) {
  216.     printf(
  217.      "LE ethernet: Bogus receive interrupt. Buffer doesn't start packet.\n");
  218.     return (FAILURE);
  219.     }
  220.     /*
  221.      * Loop as long as there are packets to process.
  222.      */
  223.  
  224.     tossPacket = dropPackets;
  225.     numResets = statePtr->numResets;
  226.     statePtr->lastRecvCnt = 0;
  227.     while (TRUE) {
  228.     /* 
  229.      * Check to see if we have processed all our buffers. 
  230.      */
  231.     if (NetBfByteTest(descPtr->bits, ChipOwned, 1)) {
  232.         break;
  233.     }
  234.     /*
  235.      * Since we allocated very large receive buffers all packets must fit
  236.      * in one buffer. Hence all buffers should have startOfPacket.
  237.      */
  238.     if (NetBfByteTest(descPtr->bits, StartOfPacket, 0)) {
  239.         printf(
  240.              "LE ethernet: Receive buffer doesn't start packet.\n");
  241.         return (FAILURE);
  242.     }
  243.     /*
  244.      * All buffers should also have an endOfPacket too.
  245.      */
  246.     if (NetBfByteTest(descPtr->bits, EndOfPacket, 0)) {
  247.         /* 
  248.          * If not an endOfPacket see if it was an error packet.
  249.          */
  250.         if (NetBfByteTest(descPtr->bits, Error, 0)) {
  251.         printf(
  252.              "LE ethernet: Receive buffer doesn't end packet.\n");
  253.         return (FAILURE);
  254.         }
  255.         /*
  256.          * We have got a serious error with a packet. 
  257.          * Report the error and toss the packet.
  258.          */
  259.         tossPacket = TRUE;
  260.         if (NetBfByteTest(descPtr->bits, OverflowError, 1)) {
  261.         statePtr->stats.overrunErrors++;
  262.         printf(
  263.                "LE ethernet: Received packet with overflow error.\n");
  264.         }
  265.         /*
  266.          * Should probably panic on buffer errors.
  267.          */
  268.         if (NetBfByteTest(descPtr->bits, RecvBufferError, 1)) {
  269.         panic(
  270.                "LE ethernet: Received packet with buffer error.\n");
  271.         }
  272.     } else { 
  273.         /*
  274.          * The buffer had an endOfPacket bit set. Check for CRC errors and
  275.          * the like.
  276.          */
  277.         if (NetBfByteTest(descPtr->bits, Error, 1)) {
  278.         tossPacket = TRUE;    /* Throw away packet on error. */
  279.         if (NetBfByteTest(descPtr->bits, FramingError, 1)) {
  280.             statePtr->stats.frameErrors++;
  281.             if ((statePtr->stats.frameErrors % 100) == 0) {
  282.             printf(
  283.            "LE ethernet: Received 100 packets with framing errors.\n");
  284.             }
  285.         }
  286.         if (NetBfByteTest(descPtr->bits, CrcError, 1)) {
  287.             statePtr->stats.crcErrors++;
  288.             if ((statePtr->stats.crcErrors % 100) == 0) {
  289.             printf(
  290.                "LE ethernet: Received 100 packets with CRC errors.\n");
  291.            }
  292.         }
  293.  
  294.          } 
  295.     }
  296.  
  297.     /* 
  298.      * Once we gotten here, it means that the buffer contains a packet
  299.      * and the tossPacket flags says if it is good or not.
  300.      */
  301.  
  302.     statePtr->stats.packetsRecvd++;
  303.  
  304.     etherHdrPtr = (Net_EtherHdr *) 
  305.         NET_LE_FROM_CHIP_ADDR(statePtr, descPtr->bufAddrHigh,
  306.         descPtr->bufAddrLow);
  307.  
  308.      /*
  309.       * Call higher level protocol to process the packet. Remove the
  310.       * CRC check (4 bytes) at the end of the packet.
  311.       */
  312.     size = descPtr->packetSize - 4;
  313.     if (!tossPacket) {
  314.         Net_Input(statePtr->interPtr, (Address)etherHdrPtr, size);
  315.     }
  316.     /*
  317.      * If the number of resets has changed then somebody reset the chip
  318.      * in Net_Input. In that case we can't keep processing packets because
  319.      * the packet pointers have been reset.  
  320.      */
  321.     if (numResets != statePtr->numResets) {
  322.         return SUCCESS;
  323.     }
  324.     /*
  325.      * We're finish with it, give the buffer back to the chip. 
  326.      */
  327.     NetBfByteSet(descPtr->bits, ChipOwned, 1);
  328.  
  329.     statePtr->lastRecvCnt++;
  330.     /* 
  331.      * Check to see if we have processed all our buffers. 
  332.      */
  333.     descPtr = NEXT_RECV(descPtr);
  334.     if (NetBfByteTest(descPtr->bits, ChipOwned, 1)) {
  335.         break;
  336.     }
  337.     }
  338.     /*
  339.      * Update the the ring pointer. We should be pointer at the chip owned 
  340.      * buffer in that the next packet will be put.
  341.      */
  342.  
  343.     statePtr->recvDescNextPtr = descPtr;
  344.  
  345.     /*
  346.      * RETURN a success.
  347.      */
  348.     return (SUCCESS);
  349. }
  350.